# Print_Star_5_Times.py # # Description: Prints "*" 5 times. # # Anne Lavergne # Date: Feb. 9 2024 def printStar5Times(): """Prints "*" 5 times.""" print("*" * 5) return #*** Main part of the program # Call printStar5Times() printStar5Times()